home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / demos / r-z / stormc-demo / include / stddef.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  417b  |  29 lines

  1. #ifndef _INCLUDE_STDDEF_H
  2. #define _INCLUDE_STDDEF_H
  3.  
  4. /*
  5. **  $VER: stddef.h 10.1 (19.7.95)
  6. **  Includes Release 40.15
  7. **
  8. **  '(C) Copyright 1995 Haage & Partner Computer GmbH'
  9. **     All Rights Reserved
  10. */
  11.  
  12. #ifndef NULL
  13. #define NULL 0
  14. #endif
  15.  
  16. #define offsetof(s,m) ((unsigned)&((s*)NULL)->m)
  17.  
  18. typedef unsigned size_t;
  19. typedef int ptrdiff_t;
  20. typedef int wchar_t;
  21.  
  22. // obsolete Defs
  23.  
  24. #define __asm
  25. #define __saveds
  26.  
  27. #endif
  28.  
  29.